home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 7661 / 7661.xpi / chrome / isreaditlater.jar / content / RILsidebar.js < prev    next >
Text File  |  2009-12-10  |  1KB  |  42 lines

  1. function RILsidebar() {
  2. }
  3.  
  4. RILsidebar.prototype = {    
  5.  
  6.     _init : function(mainWindow) {
  7.         
  8.         try {
  9.         
  10.         this.w = mainWindow;
  11.         
  12.         document.getElementById('RIL_sidebar_wrapper').appendChild( document.getElementById('RIL_list_inner') );
  13.         document.getElementById('RIL_list').setAttribute('id', '');
  14.         document.getElementById('RIL_sidebar_wrapper').setAttribute('id', 'RIL_list');    
  15.         
  16.         this.loadScript('RIL');
  17.         this.loadScript('RILshare');
  18.         
  19.         RIL.init();
  20.         
  21.         }catch(e) { Components.utils.reportError(e); }
  22.     },
  23.     
  24.     init : function() {
  25.         try {
  26.         RIL.openReadingList();
  27.         } catch(e) { Components.utils.reportError(e); }
  28.     },
  29.     
  30.     loadScript : function(jsFile) {
  31.         
  32.         Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
  33.               .getService(Components.interfaces.mozIJSSubScriptLoader)
  34.               .loadSubScript("chrome://isreaditlater/content/"+jsFile+".js"); 
  35.         
  36.     },
  37.             
  38. }
  39.  
  40. var RILsidebar = new RILsidebar();
  41.  
  42. window.addEventListener("load", function() { RILsidebar.init(); }, false);